home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1995 September / JCSM Shareware Collection (September 30th 1995 Author to Vendor Edition) (JCS Distribution).ISO / business / 11090a01.ziv / KSTAT33C.EXE / MAKEDATA.BAT < prev    next >
DOS Batch File  |  1993-10-01  |  1KB  |  42 lines

  1. echo off
  2. cls
  3. echo This command prepares your disks to run on a two-floppy system.
  4. echo  
  5. echo A formatted disk labeled KWIKSTAT DATA DISK should be in the B: drive.
  6. pause
  7. echo Copying DBF, IMG and DAT files to disk B:. . .
  8. copy *.dbf b:
  9. copy *.img b:
  10. copy *.dat B:
  11. echo ------------------------------------------------------------------ 
  12. echo The .DBF, DAT and .IMG files have been copied to the B: disk.
  13. echo ------------------------------------------------------------------ 
  14. pause
  15. :disk1
  16. cls
  17. echo ------------------------------------------------------------------   
  18. echo PLACE KWIKSTAT DISK 1 IN THE B: DRIVE. The KS.DOC and DBF files are
  19. echo about to be erased from disk 3 in drive A:. If you are using the
  20. echo "Working disk" copy of the the original disk 3, this is no problem. If
  21. echo you are using the original Kwikstat disk, and want to stop this,
  22. echo press CTRL-Break now, then redo MAKEDATA using a COPY of disk 3.
  23. echo Otherwise...
  24. echo ------------------------------------------------------------------   
  25. pause
  26. if not exist b:brt71efr.exe goto oops
  27. erase a:ks.doc
  28. erase a:*.dbf
  29. copy b:brt*.exe a:
  30. echo Disk 3 is now ready for use.
  31. echo Now place DISK 1 IN THE A: DRIVE, WORKING DISK IN B: DRIVE and type
  32. echo      FSETUP
  33. echo ------------------------------------------------------------------ 
  34. goto end
  35. :oops
  36. cls
  37. echo ******** DISK 1 is not in drive B:, please try again ********
  38. pause
  39. goto disk1
  40. :end
  41.  
  42.